home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / SciAn / src / ScianPerspec.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  755b  |  33 lines

  1. /*** ScianPerspec.c function prototypes */
  2.  
  3. #ifndef SCIANPERSPEC
  4. #define SCIANPERSPEC
  5.  
  6. #ifdef PROTO
  7. ObjPtr  NewPerspecControl(int, int, int, int, char *);
  8. void    InitPerspecControls();
  9. void    KillPerspecControls();
  10. Bool    MakePerspecOrtho(ObjPtr, Bool);
  11. #else
  12. ObjPtr    NewPerspecControl();
  13. void    InitPerspecControls();
  14. void    KillPerspecControls();
  15. Bool    MakePerspecOrtho();
  16. #endif
  17. #endif
  18.  
  19. #define INITEYEDIST     5.0
  20. #define INITAOV         25.0
  21. #define INITFOV        1.0
  22. #define INITNEARCLIP    /*0.1*/ 3.5
  23. #define INITFARCLIP     /*8.0*/ 6.5
  24. #define MINEYEDIST      0.1
  25. #define MAXEYEDIST      15.0
  26. #define MINAOV          1.0
  27. #define MAXAOV          179.0
  28. #define MAXORTHOFOV    2.0
  29. #define MINORTHOFOV    0.1
  30. #define MINCLIP         0.1
  31. #define MAXCLIP         15.0
  32.  
  33.